home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / CustomMenuPalette / CustomMenu / CustomMenu.subproj / CustomMenu.h next >
Text File  |  1995-09-17  |  750b  |  33 lines

  1. // Written by Gideon King
  2.  
  3. /*
  4. ** Source file      : CustomMenu.h
  5. ** Created by       : gideon@berd
  6. ** Created on       : Fri Sep 8 16:26:11 NZST 1995
  7. ** RCS File         : $Source: /Ramoth/Black.Albatross/CVS/CustomMenu/CustomMenu.subproj/CustomMenu.h,v $
  8. ** Last modified    : $Date: 1995/09/10 22:38:07 $
  9. ** Last modified by : $Author: gideon $
  10. ** Current Revision : $Revision: 1.1.1.1 $
  11. */
  12.  
  13.  
  14.  
  15. #import <appkit/appkit.h>
  16. #import "DraggableMenu.h"
  17.  
  18. @interface CustomMenu:DraggableMenu
  19. {
  20. }
  21.  
  22. - (const char *)version;
  23. - myInit;
  24. - init;
  25. - initTitle:(const char *)aTitle;
  26. - mouseDown:(NXEvent *)theEvent;
  27. - (NXDragOperation)draggingEntered:sender;
  28. - (BOOL)prepareForDragOperation:sender;
  29. - (BOOL)performDragOperation:sender;
  30. - removeCell:aCell;
  31.  
  32. @end
  33.